projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
be0bba4
)
Undo ill-advised change
author
Dmitry Gutov
<dgutov@yandex.ru>
Wed, 30 Dec 2015 04:25:39 +0000
(06:25 +0200)
committer
Dmitry Gutov
<dgutov@yandex.ru>
Wed, 30 Dec 2015 04:25:48 +0000
(06:25 +0200)
* lisp/progmodes/xref.el (xref-collect-matches): Undo
ill-advised change. The hits come in the order that `find'
produces them in, which isn't alphabetical.
lisp/progmodes/xref.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/xref.el
b/lisp/progmodes/xref.el
index abb9cc6361dfd5382046670e9c8ce176e664b9dc..00f348929ef636bf33f14d06f660f7eda14f7678 100644
(file)
--- a/
lisp/progmodes/xref.el
+++ b/
lisp/progmodes/xref.el
@@
-886,7
+886,7
@@
IGNORES is a list of glob patterns."
hits)))
(unwind-protect
(cl-mapcan (lambda (hit) (xref--collect-matches hit regexp))
-
hits
)
+
(nreverse hits)
)
;; TODO: Same as above.
(mapc #'kill-buffer
(cl-set-difference (buffer-list) orig-buffers)))))